home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 …SCII & the Runetime Code / ADC Developer CD (1992-07) (''Butch ASCII And The Runtime Code'')_iso / Dev.CD 199207.iso / Development Platforms / Apple II / DTS Apple II Sample Code / IR 2.0 / Source Code / IR Module / IRModule.r < prev    next >
Encoding:
Text File  |  1992-02-25  |  1.4 KB  |  58 lines  |  [TEXT/MPS ]

  1. /*****************************************************************************
  2. *
  3. * IR Module Resources
  4. * The resource descriptions for IR Module, the Nifty List module for IR 2.0
  5. *
  6. * by Matt Deatherage
  7. *
  8. * Copyright © 1992 Apple Computer, Inc.  All rights reserved
  9. *
  10. * Release history
  11. *
  12. *
  13. * 2.0f1     02/24/92    Matt Deatherage
  14. * First release -- only one version resource but it makes things easier
  15. * and little nicer.  Also an rComment(1) and (2) resource to make things
  16. * easier to understand.
  17. *
  18. * 2.0        02/25/92    Matt Deatherage
  19. * Changed version to 2.0 release version.
  20. *
  21. *****************************************************************************/
  22.  
  23. #include "TypesIIgs.r"
  24.  
  25. resource rVersion (0x1) {
  26.     {
  27.         0x2,
  28.         0x0,
  29.         0x0,
  30.         release,
  31.         0x0
  32.     },
  33.     verUS,
  34.     "IR Module",
  35.     "Copyright 1992 Apple Computer, Inc."
  36. };
  37.  
  38. resource rComment (0x1) {
  39.     "This is a Nifty List module which lets you "
  40.     "send requests to IR 2.0 from within Nifty List, "
  41.     "the CDA debugging utility from Dave Lyons."
  42.     "\n\n"
  43.     "By Matt Deatherage, with help and guidance from "
  44.     "Mr. Nifty List himself, Dave Lyons."
  45. };
  46.  
  47. resource rComment (0x2) {
  48.     "Nifty List currently has no convention to let "
  49.     "you install new modules on the fly.  Instead, "
  50.     "drag this file to the same folder as the "
  51.     "Nifty List desk accessory file and double-click "
  52.     "on Nifty List to restart it and load new modules.  "
  53.     "This only works if IR is installed; otherwise you must reboot."
  54. };
  55.  
  56.  
  57.  
  58.